skeleton_animation_clear


语法:

skeleton_animation_clear(track);

参数 描述
track The animation track to clear.


返回:

N/A(无返回值)


描述

This function will clear the specified animation track of all animations, ready to be re-assigned.

重要!该函数在试用版(Trial License)产品中可用。


例如:

if mouse_check_button(mb_right)
   {
   skeleton_animation_clear(1);
   }

The above code will clear the animation track 1 if the right mouse button is pressed.